home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Editorial / Programming with Delphi 2005 / Delphi 2005 1 / TEST1 / TEST1.DPR < prev   
Encoding:
Text File  |  2005-02-22  |  183 b   |  14 lines

  1. program test1;
  2.  
  3. uses
  4.   Forms,
  5.   test in 'test.pas' {Form1};
  6.  
  7. {$R *.res}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.